home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 44
/
Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso
/
Aminet
/
comm
/
net
/
AmiComSys.lha
/
AmiComSys
/
rexx
/
Finger.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-01-25
|
697b
|
25 lines
/* ARexx script to finger someone */
/* For use with AmiComSys 1.12+ */
/* Finger must be in the AMITCP:bin directory */
/* or MiamiFinger must be in the MIAMI: directory */
ADDRESS AMICOMSYS;
OPTIONS RESULTS;
GET stem info. CLIENTLIST;
/* "stem info." inserts the results to the structure 'info.'. */
/* "var s" would have inserted all the results to one string in s. */
/* "CLIENTLIST": We want to read the client list information. */
s=info.selected;
if show('P','MIAMI.1') then
do
ADDRESS COMMAND "MIAMI:MiamiFinger @"info.hostnames.s;
Exit
end
ADDRESS COMMAND "AmiTCP:bin/Finger @"info.hostnames.s;
/* To start another application just change Finger to any other
program name */
EXIT;